home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 9 code / Tracks / TestDrvr ƒ / testdrvr.r < prev    next >
Encoding:
Text File  |  1992-01-06  |  812 b   |  43 lines  |  [TEXT/MPS ]

  1. include "init.rsrc";
  2. include "drvr.rsrc";
  3. #include "Types.r"
  4.  
  5. /* 
  6. **    STR# id 777
  7. **     The names list is used by the cdev and dumptrace.  They are not required,
  8. **    but helpful when limiting the incomming data and reading trace output.
  9. **  A full list would have 128 names in it.  If the list is not complete, 
  10. **  names are added.
  11. */
  12.  
  13.  
  14. resource 'STR#' (777) {
  15.     {    /* array StringArray: 4 elements */
  16.         /* [1] */
  17.         "StackPeek example",
  18.         /* [2] */
  19.         "CmdKeyDown",
  20.         /* [3] */
  21.         "OptKeyDown",
  22.         /* [3] */
  23.         "Unexpected Errors"
  24.     }
  25. };
  26.  
  27.  
  28. /*
  29. **     'DrvN' id 128
  30. **     DriverName is a pascal string that holds the name of the driver
  31. **     you want to trace.  It is used instead of Get1Resource because
  32. **     some files may contain more than one driver.  
  33. */
  34.  
  35. type 'DrvN' { 
  36.         pstring;
  37. };
  38.  
  39. resource 'DrvN' (128) {
  40.     ".TestDrvr"
  41. };
  42.  
  43.